@import url('https://fonts.googleapis.com/css2?family=Hurricane&display=swap');


body {
    font-size: 18px;
}

.bg-image {
    object-fit: cover; /* Ensures the image covers the div without distortion */
    width: 100%; /* Makes the image fill the width of the container */
    height: 100%; /* Makes the image fill the height of the container */
}

.carousel {
    width: 100%;
    max-width: 100vw; /* Ensures it fits the screen width */
    height: 100vh; /* Full viewport height */
    overflow: hidden; /* Prevents overflow issues */
}

#carousel-graduation {
    height: 100%;
    width: auto !important;
}

.carousel {
    height: auto !important;
}

.carousel-inner {
    height: 100%;
}

.carousel-item {
    height: 100%;
}

.carousel-item img {
    object-fit: contain;
    width: 100%;
    height: 100%;
}

.counterItem-label {
    font-size: 0.8rem;
}

.counterItem-value {
    font-size: 1.5rem;
}

.header-weight{
    font-weight: 300;
}

h3{
    font-size: 2.4rem;
}

.emoji{
    width: 1.5rem;
    height: 1.5rem;
}

.nav-link{
    font-size: 14px;
    display: inline-block !important;
    padding: 0 !important;
}

.footer{
    height: 122px;
}

.footer-img {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: cover;
    object-position: top;
}

/* Custom underline effect with transition */
.custom-nav-link {
    position: relative;
    text-decoration: none; /* Remove default underline */
}
  
.custom-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #000000;
    transition: width 0.3s ease;
}
  
.custom-nav-link:hover::after {
    width: 100%;
}

/* Permanent underline on the clicked link */
.custom-nav-link.underline::after{
    width: 100%;
}

/*Custom specific text format*/
.custom-check-label{
    font-size: 14px;
}


.time-banner {
    background-color: #ffcc00; /* Yellow background for visibility */
    color: #333; /* Dark text for contrast */
    font-size: 18px;
    font-weight: bold;
    padding: 10px;
    text-align: center;
}

.poem-container {
    max-width: 800px;
    width: 100%;
    min-width: auto;
    padding: 40px;
    font-family: 'Hurricane', cursive;
    font-size: 2rem;
    color: #2c2c2c;
    text-align: left;
   
    margin: 0 auto; /*TODO: Change to boostrap*/
}

.poem-container p {
    line-height: 1.8;
}

.poem-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    border-radius: 0.3rem;
}


@media (max-width: 600px) {
    .navbar-nav {
        flex-direction: column !important;
    }

    .nav-item {
        padding: 5px 0;
    }

    .poem-container {
        padding: 20px;
        font-size: 1.4rem;
    }

    #place-hint-container {
        width: 80% !important;
    }
    
}